/* Hero Section */
.hero-who {
  background-color: #43da87;
  position: relative;
  width: 100%;
  height: 100vh; /* adjust as needed */
  background: center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional dark overlay for readability */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25); /* subtle overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 1rem;
}

.hero-content .subheading {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero-content .title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {

  .hero-content .title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {

  .hero-content .title {
    font-size: 1.8rem;
  }

  .hero-content .subheading {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {

  .hero-content .title {
    font-size: 1.5rem;
  }

  .hero-content .subheading {
    font-size: 0.75rem;
  }
}

/* Section Styling */
.group-description {
  background: #fff;
  padding: 4rem 1.5rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.8;
}

/* Container */
.group-description .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Paragraphs */
.group-description p {
  margin-bottom: 1.8rem;
  font-size: 1.2rem;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 1024px) {
  .group-description {
    padding: 3rem 1.2rem;
  }

  .group-description p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .group-description {
    padding: 2.5rem 1rem;
  }

  .group-description p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .group-description {
    padding: 2rem 1rem;
  }

  .group-description p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
}

/* 🌍 ceo Quote Section */
.ceo-quote {
  padding: 4rem 2rem;
  background: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.ceo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ceo-text {
  flex: 1;
}

.ceo-text .quote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 1.5rem;
}

.ceo-text .author {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #111;
}

.ceo-image {
  flex: 1;
  text-align: center;
}

.ceo-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .ceo-container {
    flex-direction: column;
    text-align: left;
  }

  .ceo-image {
    margin-top: 2rem;
  }
}
